Test Documentation Overview

This is my test description! Notice it is multiline and supports the "Showdown" implementation of Markdown. You can add

Headings

Sub headings

You can also create * bulleted * lists 6. Update the Gruntfile.js file to include this new file within a new section within the group Since it is documentation not within comments within a script, we include it in the "docs" configuration

module.exports = function(grunt) {

    // Project configuration.
    grunt.initConfig({

        pkg: grunt.file.readJSON('package.json'),

        docular: {
            groups: [
                {
                    groupTitle: 'My Test Docs', //this is what will show up in the UI for this group
                    groupId: 'mytestdocs', //to determine what directory these docs will go into and used as an identifier
                    groupIcon: 'icon-book', //icon to use when relevant and within this group of documentation
                    sections: [
                        {
                            id: "overviewdocs",
                            title:"My Overview Docs",
                            scripts: [],
                            docs: ['docs/']
                        }
                    ]
                }
            ],
            showDocularDocs: true,
            showAngularDocs: true
        }

    });

    // Load the plugin that provides the "docular" tasks.
    grunt.loadNpmTasks('grunt-docular');

    // Default task(s).
    grunt.registerTask('default', ['docular']);

};